home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / ZIPLOG10.ZIP / ZIPLOG.DOC < prev    next >
Encoding:
Text File  |  1996-02-19  |  3.6 KB  |  105 lines

  1.  
  2.          ZipLog 1.0 - Copyright 1995,96  Ron Whitney  (1:236/20.3@Fidonet)
  3.         
  4.           Purpose:
  5.  
  6.              ZipLog was written as an Ad-Hoc utility to archive my
  7.              Binkley.log file once per month.
  8.  
  9.           What it does:
  10.  
  11.              ZipLog will rename any specified filename.ext to mmddyy.ext
  12.              and will then invoke PKZIP to create an archive of the same
  13.              name.  The -M parameter is used so that PKZIP will "move" 
  14.              the file to the archive thus ZipLog tends to clean up after
  15.              itself.             
  16.  
  17.              NOTE: PKZIP must exist either in the currect directory or be 
  18.                    found via the PATH statement.  For most people this is
  19.                    not a problem.
  20.              
  21.           Usage:
  22.  
  23.              Specify the name of the file you wish to archive on the command
  24.              line.  The file's extension must be included.
  25.  
  26.              ZIPLOG  filename.ext 
  27.                 where filename.ext is the file you wish to archive. 
  28.                 The filename is NOT case sensitive and may include the full
  29.                 path to the file.  The archived file will be created in the
  30.                 current directory.
  31.  
  32.           Example:
  33.  
  34.              I have BinkleyTerm exit with Errorlevel 91 at midnight on the
  35.              first of the month.  BINK.BAT (my batch file to run BinkleyTerm)
  36.              includes the following lines:
  37.  
  38.              If Errorlevel 91 Goto BOM
  39.                          .
  40.                          .
  41.              :BOM
  42.                 C:
  43.                 CD \BINK\LOG
  44.                 ZIPLOG BINKLEY.LOG
  45.  
  46.              When this ran on February 1, 1996 the following happened:
  47.         
  48.                 1) BINKLEY.LOG as renamed to 020196.LOG
  49.                 2) 020196.LOG was archived to 020196.ZIP
  50.                 3) 020196.LOG was deleted once it was archived.
  51.  
  52.           ZipLog.Doc  ver. 1.0                                      Page 1
  53.  
  54.           This program was written in Microsoft QuickBASIC 3.0 with my
  55.           apoligies to all who write in a "real" language.
  56.           If you wish to change or modify this code and do not have a BASIC
  57.           compiler, send the changes to me and I will try to return a 
  58.           compiled version to you.  See below for ways to contact me.
  59.  
  60.           Copyrights:
  61.  
  62.              BinkleyTerm - Copyright (C) Bit Bucket Software, Co.
  63.              PKZIP       - Copyright (C) PKWARE Inc.
  64.              QuickBASIC  - Copyright (C) Microsoft Corp.
  65.  
  66.              My thanks to the above named!
  67.  
  68.              If it is possible to truly copyright something simply by 
  69.              declaring it then I copyright this material as per the notice
  70.              at the head of this file.
  71.  
  72.              Anyone is free to use and modify this material to suit their
  73.              needs as long as they document their changes before giving it
  74.              to anyone else.  In other words, I don't want credit for your
  75.              work nor do I want you to get blamed for my lousy code.
  76.  
  77.              Questions, Comments, Requests for custom copies, etc. may be
  78.              directed to the following:
  79.  
  80.              FidoNet Netmail - 1:236/20.3  or  1:236/58
  81.              Fax / Voicemail - (219) 436-0153
  82.              U.S. Mail          Ron Whitney
  83.                                 P.O. Box 10204
  84.                                 Fort Wayne  IN  46851-0204
  85.  
  86.           Use and Enjoy!
  87.  
  88.           Make revision notes below:
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.           ZipLog.Doc  ver. 1.0                                      Page 2
  105.